home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / Python 133 SRC / Mac / Include / macglue.h < prev    next >
Text File  |  1996-03-06  |  4KB  |  90 lines

  1. /***********************************************************
  2. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  3. The Netherlands.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its 
  8. documentation for any purpose and without fee is hereby granted, 
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in 
  11. supporting documentation, and that the names of Stichting Mathematisch
  12. Centrum or CWI not be used in advertising or publicity pertaining to
  13. distribution of the software without specific, written prior permission.
  14.  
  15. STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
  16. THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  17. FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
  18. FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  19. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  20. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
  21. OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  22.  
  23. ******************************************************************/
  24.  
  25. #ifndef SystemSevenOrLater
  26. #define SystemSevenOrLater 1
  27. #endif
  28.  
  29. #include <Types.h>
  30. #include <Files.h>
  31. #include <Events.h>
  32. #include <StandardFile.h>
  33.  
  34. #ifdef GENERATINGCFM    /* Defined to 0 or 1 in Universal headers */
  35. #define HAVE_UNIVERSAL_HEADERS
  36. #endif
  37.  
  38. #ifdef SYMANTEC__CFM68K__
  39. #pragma lib_export on
  40. #endif
  41.  
  42. #ifdef USE_GUSI
  43. void PyMac_FixGUSIcd Py_PROTO((void));    /* Workaround for GUSI chdir() call */
  44. #endif
  45.  
  46. char *PyMac_StrError(int);            /* strerror with mac errors */
  47.  
  48. extern int PyMac_DoYieldEnabled;        /* Don't do eventloop when false */
  49.  
  50. extern PyObject *PyMac_OSErrException;        /* Exception for OSErr */
  51. PyObject *PyMac_GetOSErrException(void);    /* Initialize & return it */
  52.  
  53. int PyMac_Idle Py_PROTO((void));        /* Idle routine */
  54. void PyMac_Yield Py_PROTO((void));        /* optional idle routine for mainloop */
  55. void PyMac_SetYield Py_PROTO((long, long, long, long)); /* Set timeouts */
  56. PyObject *PyErr_Mac(PyObject *, int);        /* Exception with a mac error */
  57. PyObject *PyMac_Error(OSErr);            /* Uses PyMac_GetOSErrException */
  58. void PyMac_HandleEvent Py_PROTO((EventRecord *)); /* Handle one event, if possible */
  59.  
  60. int PyMac_Idle(void);                /* Idle routine */
  61.  
  62. int PyMac_FindResourceModule(char *, char *); /* Test for 'PYC ' resource in a file */
  63. PyObject * PyMac_LoadResourceModule(char *, char *); /* Load 'PYC ' resource from file */
  64.  
  65. int PyMac_GetDirectory(FSSpec *dirfss, char *prompt);        /* Ask user for a directory */
  66. void PyMac_PromptGetFile(short numTypes, ConstSFTypeListPtr typeList, 
  67.     StandardFileReply *reply, char *prompt);    /* Ask user for file, with prompt */
  68.  
  69. int PyMac_GetOSType(PyObject *, OSType *);    /* argument parser for OSType */
  70. PyObject *PyMac_BuildOSType(OSType);        /* Convert OSType to PyObject */
  71.  
  72. int PyMac_GetStr255(PyObject *, Str255);    /* argument parser for Str255 */
  73. PyObject *PyMac_BuildStr255(Str255);        /* Convert Str255 to PyObject */
  74.  
  75. int PyMac_GetFSSpec(PyObject *, FSSpec *);    /* argument parser for FSSpec */
  76. PyObject *PyMac_BuildFSSpec(FSSpec *);        /* Convert FSSpec to PyObject */
  77.  
  78. int PyMac_GetRect(PyObject *, Rect *);        /* argument parser for Rect */
  79. PyObject *PyMac_BuildRect(Rect *);        /* Convert Rect to PyObject */
  80.  
  81. int PyMac_GetPoint(PyObject *, Point *);    /* argument parser for Point */
  82. PyObject *PyMac_BuildPoint(Point);        /* Convert Point to PyObject */
  83.  
  84. int PyMac_GetEventRecord(PyObject *, EventRecord *); /* argument parser for EventRecord */
  85. PyObject *PyMac_BuildEventRecord(EventRecord *); /* Convert EventRecord to PyObject */
  86.  
  87. int PyMac_GetFixed(PyObject *, Fixed *);    /* argument parser for Fixed */
  88. PyObject *PyMac_BuildFixed(Fixed);            /* Convert Fixed to PyObject */
  89. void PyMac_InitApplet(void);            /* Initialize and run an Applet */
  90.